home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / comm / mail / Mutt000_POP.lha / Mutt-0.89i-AMIGA / NEWS < prev    next >
Text File  |  1998-01-28  |  4KB  |  89 lines

  1. Announcing Mutt 0.89
  2. ====================
  3.  
  4. NOTE: PLEASE read the following list of changes carefully, especially the
  5. first couple entries related to changes in variables/commands and see the
  6. manual before posting questions.  Taking a little time to read this notice
  7. will significantly reduce the amount of confusion as to why some things
  8. might seem broken at first.
  9.  
  10. Major changes since 0.88:
  11.  
  12. - the $hold variable was removed.  the same functionality is obtained by
  13.   "set nomove"
  14.  
  15. - the *-hook commands can now be optionally prefixed with an exclamation
  16.   point (!) to indicate a negation operation (e.g. anything that does *not*
  17.   match the given regexp).   NOTE:  if you have a folder-hook which uses the
  18.   shortcut `!' to refer to $spoolfile, you will need to enclose it in either
  19.   double or single quotes to prevent Mutt from thinking you mean the
  20.   negation operation (eg.  folder-hook "!" set ...)
  21.  
  22. - the $local_sig and $remote_sig variables have been removed.  Equivalent
  23.   functionality can be obtained using `send-hook' with the new negation
  24.   operator:
  25.       send-hook . set signature=~/.sig-local
  26.     send-hook ! hmc\\.edu$ set signature=~/.sig-local # remote domain
  27.  
  28. - removed the $point_new variable.  the pointer is now always position on
  29.   the first new message (if it exists)
  30.  
  31. - when using $edit_hdrs, you man now quickly add attachments to your message
  32.   by adding an `Attach:' header field.  The syntax is as follows:
  33.       Attach: <filename> [ <optional description> ]
  34.   You may add as many `Attach:' fields as you wish.
  35.  
  36. - created a new keymap named `generic' from which you may set the defaults
  37.   for the `index', `attach', `pgp', `browser' and `alias' menus with a
  38.   single `bind' command.  If a key is not bound to a specific menu, Mutt
  39.   will now check the generic keymap for a definition and use that instead.
  40.  
  41. - handling of quotes in muttrc commands has changed to be similar to those
  42.   of most shell programs.  in particular, runs of quotes are now supported,
  43.   such that the following strings are equivalent:
  44.           michael\ elkins
  45.           michael' 'elkins
  46.           "michael"' 'elkins
  47.   In addition, the quote character (\) and backtic evaluation (``) are NOT
  48.   evaluated inside of single quotes (').  This allows you to create a
  49.   send-hook or folder-hook for which the backtics (``) are evaluated at the
  50.   time the hook is executed rather than only when Mutt starts.  For example:
  51.       send-hook . 'set signature=`gen_random_signature_file`'
  52.   Also note that old hooks such as
  53.       send-hook foo@bar.com    set realname="Michael Elkins"
  54.   will no longer work (you will get the error "elkins: invalid variable")
  55.   because of the new quoting rules (*-hook is similar to the `exec' shell
  56.   command which will strip off the quotes).  Hooks of this nature can be
  57.   fixed by either quoting the whole command to be executed or by quoting the
  58.   individual quotes with a backslash (\):
  59.       send-hook foo@bar.com    set realname=\"Michael Elkins\"
  60.  
  61. - the `from_' keyword in the `ignore' command no longer deletes the mbox
  62.   message separator.  Use
  63.       ignore 'from '
  64.   instead
  65.  
  66. - added the `tag-thread' function, bound to `ESC-t' by default
  67.  
  68. - added new variable $forw_quote which if set will quote the body of
  69.   forwarded message (with $mime_fwd unset) with $index_prefix
  70.  
  71. - with $edit_hdrs, if you delete the in-reply-to: field Mutt will
  72.   automatically remove the References: field as well
  73.  
  74. - the `url' menu has been removed from Mutt and made into a standalone
  75.   utility which can be obtained from
  76.   ftp://ftp.cs.hmc.edu/pub/me/urlview-0.6.tar.gz
  77.  
  78. Mutt's primary distribution point is
  79.     ftp://ftp.cs.hmc.edu/pub/me/mutt/    (Export version)
  80.     ftp://ftp.cs.hmc.edu/pub/me/US-only/    (US only version)
  81.  
  82. See the Mutt Home Page (http://www.cs.hmc.edu/~me/mutt/) for mirror sites.
  83.  
  84. Bug reports should be sent to the Mutt User's Mailing List
  85. <mutt-users@cs.hmc.edu>.
  86.  
  87. me
  88. January 22, 1998
  89.